home *** CD-ROM | disk | FTP | other *** search
ColdFusion Markup Language | 2001-06-13 | 2.4 KB | 56 lines |
- <cfparam name="pageMargin" default="true">
- <cfparam name="rootPath" default="../">
- <cfparam name="pageName" default="ColdFusion Administrator">
- <cfscript>
- sUserAgent = trim(cgi.http_user_agent);
- if ( find( "X11", sUserAgent ) ) {
- // X11 stylesheet (should cover most Unix desktops)
- sStyleLocation = "#rootPath#cfadmin_unix.css";
- }
- else if ( find("MSIE", sUserAgent) ) {
- // All IE Browsers on all OS/desktops
- sStyleLocation = "#rootPath#cfadmin.css";
- }
- else {
- // Default. Netscape and everything else
- sStyleLocation = "#rootPath#cfadmin_ns.css";
- }
- </cfscript>
- <cfoutput>
- <!-- /////////////////////////////////////////////////////// -->
- <!-- /// open header.cfm -->
- <html>
- <head>
- <title>ColdFusion Administrator</title>
- <link rel="STYLESHEET" type="text/css" href="#sStyleLocation#">
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- <meta name="Author" content="Copyright 1996-#year(now())# Macromedia Corp. All rights reserved.">
- </head>
- </cfoutput>
- <cfoutput>
- <cfif pageMargin is "false">
- <body bgcolor="white" topmargin="0" text="444444" link="003399" vlink="997799" alink="339900" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
- <cfelse>
- <body bgcolor="C8D3DC" topmargin="0" text="444444" link="003399" vlink="997799" alink="339900" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
- </cfif>
- <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="White">
- <tr bgcolor="eeeeee">
- <td height="35" nowrap background="#rootPath#images/headerstub.jpg"> </td>
- <td colspan="2" background="#rootPath#images/headerbg2000.jpg">
- <b class="h3">#pageName#</b>
- </td>
- <td width="1" nowrap rowspan="99" bgcolor="003366"><img src="#rootPath#images/clear.gif" height="1" width="1"></td>
- </tr>
- <tr bgcolor="666666">
- <td width="7%" height="1"><p style="line-height:1px;"><img src="#rootPath#images/clear.gif" height="1" width="1" border="0" hspace="2"></p></td>
- <td width="86%"><p style="line-height:1px;"><img src="#rootPath#images/clear.gif" height="1" width="1" border="0" hspace="252"></p></td>
- <td width="7%"><p style="line-height:1px;"><img src="#rootPath#images/clear.gif" height="1" width="1" border="0" hspace="2"></p></td>
-
- </tr>
- <cfif pageMargin is "false">
- </table>
- </cfif>
- </cfoutput>
- <!-- /// close header.cfm -->
- <!-- /////////////////////////////////////////////////////// -->
-